home *** CD-ROM | disk | FTP | other *** search
- In article <f2c_9601302132@techtol.magic.mb.ca>, tahir.khawaja@techtol.magic.mb.ca (Tahir Khawaja) writes:
- > #include <stdio.h>
- >
- > main()
- > {
- > int num1, num2, res, ope, err;
- >
- > printf("Please input two number!\n");
- > scanf("%d%d", &num1, &num2);
- > printf("You entered %d and %d.\n\n", &num1, &num2);
-
- When you put the & just before the var name you just ask for the address
- of the var which seems to be the big number you have...
-
- No problemo (Alf...)
-
- Proux Guillaume (Atelier Amiga)
-
-
-